home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2002 #11
/
Amiga Plus CD - 2002 - No. 11.iso
/
Tools
/
Development
/
SDL
/
examples
/
Makefile
< prev
next >
Wrap
Makefile
|
2002-10-27
|
727b
|
27 lines
INCLUDES = -I../include/SDL -I../include
CFLAGS = -O2 -fomit-frame-pointer
LFLAGS = -noixemul
LIBS = -L../lib/ -lSDLstub
all: testbitmap testsprite testwin testpalette loopwave
clean:
-rm -f testbitmap testsprite testwin testpalette loopwave
testbitmap: testbitmap.c
gcc $(CFLAGS) $(LFLAGS) $(INCLUDES) -o testbitmap testbitmap.c $(LIBS)
loopwave: loopwave.c
gcc $(CFLAGS) $(LFLAGS) $(INCLUDES) -o loopwave loopwave.c
testsprite: testsprite.c
gcc $(CFLAGS) $(LFLAGS) $(INCLUDES) -o testsprite testsprite.c $(LIBS)
testpalette: testpalette.c
gcc $(CFLAGS) $(LFLAGS) $(INCLUDES) -o testpalette testpalette.c $(LIBS) -lm
testwin: testwin.c
gcc $(CFLAGS) $(LFLAGS) $(INCLUDES) -o testwin testwin.c $(LIBS)